home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-04-20 | 351 b | 11 lines |
- class Round {
- public static void main(String[] args) {
- System.out.println(Math.round(9.01));
- System.out.println(Math.round(9.5));
- System.out.println(Math.round(-9.5));
- System.out.println(Math.round(-0.1));
- System.out.println(Math.round(100.0));
- System.out.println(Math.round(Double.MIN_VALUE));
- }
- }
-